home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 5 / Apprentice-Release5.iso / Source Code / C++ / Applications / PICSee Dust 1.01 / Preferences source / PICSPreferencesDialog.h < prev   
Text File  |  1995-11-15  |  867b  |  36 lines

  1. typedef struct {
  2.     short doCrop;
  3.     short doAssemble;
  4.     short assembleLeftToRight;
  5.     short outputDepth;
  6.     short outputDepthType;
  7.     short frameStart;
  8.     short frameStop;
  9.     short reserved;
  10. } CompositeOptions;
  11.  
  12.  
  13. typedef struct {
  14.     long showOpenProgress;
  15.     short defaultOperation;
  16.     short compositePreview;
  17.     short animationMethod;
  18.     short _padding;
  19.     OSType pictCreatorType;
  20.     short changeCreator;
  21.     short marqueeColor;
  22.     RGBColor customRGBColor;
  23.     
  24.     // Although all of these are saved, only some saved values are
  25.     // used as prefs; others (like cropRect and outputDepth) are used for
  26.     // run-time determination only.
  27.     CompositeOptions composite;
  28. } Prefs, **PrefsHandle;
  29.  
  30. // ---------------------------------------------------------------------------
  31.  
  32. void InitPrefs();
  33. PrefsHandle LoadPrefs();
  34. void SetupPrefsDialog();
  35.  
  36. void GetPrefsMarqueeColor(PrefsHandle prefs, RGBColor *marqueeColor);